home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-413.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  106 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(14239);
  11.  script_version ("$Revision: 1.6 $");
  12.  script_cve_id("CAN-2004-0178", "CAN-2004-0415", "CAN-2004-0447", "CAN-2004-0535", "CAN-2004-0587");
  13.  
  14.  name["english"] = "RHSA-2004-413: kernel";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated kernel packages that fix several security issues in Red Hat
  21.   Enterprise Linux 3 are now available.
  22.  
  23.   The Linux kernel handles the basic functions of the operating system.
  24.  
  25.   Paul Starzetz discovered flaws in the Linux kernel when handling file
  26.   offset pointers. These consist of invalid conversions of 64 to 32-bit file
  27.   offset pointers and possible race conditions. A local unprivileged user
  28.   could make use of these flaws to access large portions of kernel memory.
  29.   The Common Vulnerabilities and Exposures project (cve.mitre.org) has
  30.   assigned the name CAN-2004-0415 to this issue.
  31.  
  32.   These packages contain a patch written by Al Viro to correct these flaws.
  33.   Red Hat would like to thank iSEC Security Research for disclosing this
  34.   issue and a number of vendor-sec participants for reviewing and working on
  35.   the patch to this issue.
  36.  
  37.   In addition, these packages correct a number of minor security issues:
  38.  
  39.   An bug in the e1000 network driver. This bug could be used by local users
  40.   to leak small amounts of kernel memory (CAN-2004-0535).
  41.  
  42.   A bug in the SoundBlaster 16 code which does not properly handle certain
  43.   sample sizes. This flaw could be used by local users to crash a system
  44.   (CAN-2004-0178).
  45.  
  46.   A possible NULL-pointer dereference in the Linux kernel prior to 2.4.26 on
  47.   the Itanium platform could allow a local user to crash a system
  48.   (CAN-2004-0447).
  49.  
  50.   Inappropriate permissions on /proc/scsi/qla2300/HbaApiNode (CAN-2004-0587).
  51.  
  52.   All Red Hat Enterprise Linux 3 users are advised to upgrade their
  53.   kernels to the packages associated with their machine architectures
  54.   and configurations as listed in this erratum.
  55.  
  56.  
  57.  
  58.  
  59. Solution : http://rhn.redhat.com/errata/RHSA-2004-413.html
  60. Risk factor : High';
  61.  
  62.  script_description(english:desc["english"]);
  63.  
  64.  summary["english"] = "Check for the version of the kernel packages";
  65.  script_summary(english:summary["english"]);
  66.  
  67.  script_category(ACT_GATHER_INFO);
  68.  
  69.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  70.  family["english"] = "Red Hat Local Security Checks";
  71.  script_family(english:family["english"]);
  72.  
  73.  script_dependencies("ssh_get_info.nasl");
  74.  
  75.  script_require_keys("Host/RedHat/rpm-list");
  76.  exit(0);
  77. }
  78.  
  79. include("rpm.inc");
  80. if ( rpm_check( reference:"kernel-BOOT-2.4.21-15.0.4.EL", release:"RHEL3") )
  81. {
  82.  security_hole(0);
  83.  exit(0);
  84. }
  85. if ( rpm_check( reference:"kernel-doc-2.4.21-15.0.4.EL", release:"RHEL3") )
  86. {
  87.  security_hole(0);
  88.  exit(0);
  89. }
  90. if ( rpm_check( reference:"kernel-source-2.4.21-15.0.4.EL", release:"RHEL3") )
  91. {
  92.  security_hole(0);
  93.  exit(0);
  94. }
  95.  
  96. if ( rpm_exists(rpm:"kernel-", release:"RHEL3") )
  97. {
  98.  set_kb_item(name:"CAN-2004-0178", value:TRUE);
  99.  set_kb_item(name:"CAN-2004-0415", value:TRUE);
  100.  set_kb_item(name:"CAN-2004-0447", value:TRUE);
  101.  set_kb_item(name:"CAN-2004-0535", value:TRUE);
  102.  set_kb_item(name:"CAN-2004-0587", value:TRUE);
  103. }
  104.  
  105. set_kb_item(name:"RHSA-2004-413", value:TRUE);
  106.